home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 042a / bi4.zip / WDRIVE.PAS < prev    next >
Pascal/Delphi Source File  |  1993-02-23  |  213b  |  13 lines

  1. {
  2.   Windows example of how to find out about existing 
  3.   drives without generating an error. See Drives.pas
  4.   for a Dos Example.
  5. }
  6. program WinDrives;
  7. uses
  8.   WGetDriv,
  9.   WinCrt;
  10.  
  11. begin
  12.   GetDrives;
  13. end.